home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
kermit.columbia.edu
/
kermit.columbia.edu.tar
/
kermit.columbia.edu
/
newsgroups
/
misc.20000824-20010305
/
000322_news@columbia.edu _Mon Feb 19 16:16:21 2001.msg
< prev
next >
Wrap
Internet Message Format
|
2001-03-05
|
3KB
Return-Path: <news@columbia.edu>
Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id QAA24991
for <kermit.misc@cpunix.cc.columbia.edu>; Mon, 19 Feb 2001 16:16:21 -0500 (EST)
Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA22316
for <kermit.misc@watsun.cc.columbia.edu>; Mon, 19 Feb 2001 16:16:21 -0500 (EST)
Received: (from news@localhost)
by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id PAA17837
for kermit.misc@watsun.cc.columbia.edu; Mon, 19 Feb 2001 15:53:33 -0500 (EST)
X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
From: guenhwyvar_2000@hotmail.com (Guenhwyvar)
Subject: Re: automate dialing
Message-ID: <3a9187a9.780123@nntp.uunet.ca>
Date: Mon, 19 Feb 2001 20:53:28 GMT
Organization: UUNET Canada News Reader Service
To: kermit.misc@columbia.edu
On 19 Feb 2001 19:16:12 GMT, fdc@watsun.cc.columbia.edu (Frank da
Cruz) wrote:
>In article <3a916e10.15776541@nntp.uunet.ca>,
>Guenhwyvar <guenhwyvar_2000@hotmail.com> wrote:
>: Whenthe script is going to dialing, i receive this message:
>:
>: ?Connection on U.S. Robotics 56K FAX EXT is not open.
>:
>: i havent found any doc on this subjet.
>:
>This is a report about Kermit 95? Perhaps you could post the portion
>of your script that does the setup and dialing.
>
>The message seems to indicate that the modem is in use by another
>process. Could that be the case?
>
>- Frank
No program use the modem.
My script
define modem-Standard-Modem {
set tapi line Standard_Modem
if fail end 1 TAPI line Standard_Modem already in use.
if not equal "\v(modem)" "tapi" set modem type tapi
set carrier auto
set modem error-correction on
set modem compression on
set speed 57600
set parity none
set stop-bits 1
set flow auto
set modem volume low
set modem speaker on
set modem escape-char 43
set modem speed-match off
}
define modem-DEFAULT {
set tapi line U.S._Robotics_56K_FAX_EXT
if fail end 1 TAPI line U.S._Robotics_56K_FAX_EXT already in use.
if not equal "\v(modem)" "tapi" set modem type tapi
set carrier auto
set modem error-correction on
set modem compression on
set speed 57600
set parity none
set stop-bits 1
set flow auto
set modem volume low
set modem speaker on
set modem escape-char 0
set modem speed-match off
}
write screen \13\10\13\10
output ATDT\m(_MOB_No_Tel)\13\10 ; # D'acc�s
input 100 CONNECT ;
Attente du mot CONNECT dans les 100 secondes qui suivent
if success goto remote_echange_fichier
Thanks
Guenhwyvar
guenhwyvar_2000@hotmail.com